home *** CD-ROM | disk | FTP | other *** search
/ Programmer Power Tools / Programmer Power Tools.iso / math / math.arc / CI-C86.MRG < prev    next >
Text File  |  1988-07-21  |  1KB  |  20 lines

  1.  
  2. /* Following changes 9/27/83 by R.L. Cunningham reduce problem */
  3. /* with CI-C86 compiler redirection interfering with the same  */
  4. /* I/O redirection capability under PC-DOS 2.0               */
  5. /* e.g. the command "lower {input.fil }output.fil" will invoke */
  6. /* CI-C86 redirection , "lower <input.fil >output.fil" DOS re- */
  7. /* direction.  With these mods the CI-C86 redirection works fine */
  8. /* (With DOS 1.1 it works O.K. with or without the           */
  9. /* mods;  it doesn't sport a redirection capability to inter-  */
  10. /* with). Make these changes to a copy of "_main" from CLIBC.ARC */
  11. /* then recompile the new _main, replace it in the CLIB.CL using */
  12. /* the command "libr -u clib _main".  Programs compiled hereafter*/
  13. /* will differentiate I/O redirection between CI-C86 and DOS 2.0*/
  14.  
  15. /*  if(*cp=='<')stdinf=cp+1;            /* redirect stdin */
  16.     if(*cp=='{')stdinf=cp+1;            /* redirect stdin */
  17.  
  18. /*  else if(*cp=='>')stdoutf=cp+1;      /* redirect stdout */
  19.     else if(*cp=='}')stdoutf=cp+1;      /* redirect stdout */
  20.